home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-600.nasl < prev    next >
Text File  |  2005-01-14  |  4KB  |  113 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(15960);
  11.  script_version ("$Revision: 1.1 $");
  12.  script_cve_id("CAN-2003-0987", "CAN-2004-0885", "CAN-2004-0940");
  13.  
  14.  name["english"] = "RHSA-2004-600: apache";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20. Updated apache and mod_ssl packages that fix various minor security issues
  21. and bugs in the Apache Web server are now available for Red Hat Enterprise
  22. Linux 2.1.
  23.  
  24. The Apache HTTP Server is a powerful, full-featured, efficient, and
  25. freely-available Web server. The mod_ssl module provides strong
  26. cryptography for the Apache Web server via the Secure Sockets Layer (SSL)
  27. and Transport Layer Security (TLS) protocols.
  28.  
  29. A buffer overflow was discovered in the mod_include module. This flaw
  30. could allow a local user who is authorized to create server-side include
  31. (SSI) files to gain the privileges of a httpd child (user \'apache\'). The
  32. Common Vulnerabilities and Exposures project (cve.mitre.org) has assigned
  33. the name CAN-2004-0940 to this issue.
  34.  
  35. The mod_digest module does not properly verify the nonce of a client
  36. response by using a AuthNonce secret. This could allow a malicious user who
  37. is able to sniff network traffic to conduct a replay attack against a
  38. website using Digest protection. Note that mod_digest implements an older
  39. version of the MD5 Digest Authentication specification, which is known not
  40. to work with modern browsers. This issue does not affect mod_auth_digest.
  41. (CAN-2003-0987).
  42.  
  43. An issue has been discovered in the mod_ssl module when configured to use
  44. the "SSLCipherSuite" directive in a directory or location context. If a
  45. particular location context has been configured to require a specific set
  46. of cipher suites, then a client is able to access that location using
  47. any cipher suite allowed by the virtual host configuration.
  48. (CAN-2004-0885).
  49.  
  50. Several bugs in mod_ssl were also discovered, including:
  51.  
  52. - memory leaks in SSL variable handling
  53.  
  54. - possible crashes in the dbm and shmht session caches
  55.  
  56. Red Hat Enterprise Linux 2.1 users of the Apache HTTP Server should upgrade
  57. to these erratum packages, which contains Apache version 1.3.27 with
  58. backported patches correcting these issues.
  59.  
  60.  
  61.  
  62.  
  63. Solution : http://rhn.redhat.com/errata/RHSA-2004-600.html
  64. Risk factor : High';
  65.  
  66.  script_description(english:desc["english"]);
  67.  
  68.  summary["english"] = "Check for the version of the apache packages";
  69.  script_summary(english:summary["english"]);
  70.  
  71.  script_category(ACT_GATHER_INFO);
  72.  
  73.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  74.  family["english"] = "Red Hat Local Security Checks";
  75.  script_family(english:family["english"]);
  76.  
  77.  script_dependencies("ssh_get_info.nasl");
  78.  
  79.  script_require_keys("Host/RedHat/rpm-list");
  80.  exit(0);
  81. }
  82.  
  83. include("rpm.inc");
  84. if ( rpm_check( reference:"apache-1.3.27-9.ent", release:"RHEL2.1") )
  85. {
  86.  security_hole(0);
  87.  exit(0);
  88. }
  89. if ( rpm_check( reference:"apache-devel-1.3.27-9.ent", release:"RHEL2.1") )
  90. {
  91.  security_hole(0);
  92.  exit(0);
  93. }
  94. if ( rpm_check( reference:"apache-manual-1.3.27-9.ent", release:"RHEL2.1") )
  95. {
  96.  security_hole(0);
  97.  exit(0);
  98. }
  99. if ( rpm_check( reference:"mod_ssl-2.8.12-7", release:"RHEL2.1") )
  100. {
  101.  security_hole(0);
  102.  exit(0);
  103. }
  104.  
  105. if ( rpm_exists(rpm:"apache-", release:"RHEL2.1") )
  106. {
  107.  set_kb_item(name:"CAN-2003-0987", value:TRUE);
  108.  set_kb_item(name:"CAN-2004-0885", value:TRUE);
  109.  set_kb_item(name:"CAN-2004-0940", value:TRUE);
  110. }
  111.  
  112. set_kb_item(name:"RHSA-2004-600", value:TRUE);
  113.